From 15cb34f1646d19992d8b3cc71fcff3e419cbee7b Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=98yvind=20Kol=C3=A5s?= Date: Tue, 13 Dec 2016 21:50:56 +0100 Subject: [PATCH] babl: return tolerance to 0.000001 Smallest value printable with default %f printf format, conversions have been iterated on sufficiently to crank up the precision again. --- babl/babl-fish-path.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/babl/babl-fish-path.c b/babl/babl-fish-path.c index 3762d62..7e1504c 100644 --- a/babl/babl-fish-path.c +++ b/babl/babl-fish-path.c @@ -21,7 +21,7 @@ #include "babl-internal.h" #include "babl-ref-pixels.h" -#define BABL_TOLERANCE 0.000006 +#define BABL_TOLERANCE 0.000001 #define BABL_MAX_COST_VALUE 2000000 #define BABL_HARD_MAX_PATH_LENGTH 8 #define BABL_MAX_NAME_LEN 1024 -- 2.30.2